home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
DELPHI32
/
GRAPHICS
/
IMGLIB95
/
DEMOALL.DP_
/
DEMOALL.DP
Wrap
Text File
|
1996-03-31
|
355b
|
21 lines
program Demoall;
uses
Forms,
Udemo in 'UDEMO.PAS' {Form1},
Ufullscr in 'UFULLSCR.PAS' {FullSlide},
Uabout in 'UABOUT.PAS' {AboutBox};
{$R *.RES}
begin
Application.CreateForm(TDemoForm1, DemoForm1);
Application.CreateForm(TFullSlide, FullSlide);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.